home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / init.d / rsyncd < prev    next >
Text File  |  2006-05-08  |  438b  |  21 lines

  1. #!/sbin/runscript
  2. # Copyright 1999-2004 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: /var/cvsroot/gentoo-x86/net-misc/rsync/files/rsyncd.init.d,v 1.4 2004/10/21 01:10:48 vapier Exp $
  5.  
  6. depend() {
  7.     use net
  8. }
  9.  
  10. start() {
  11.     ebegin "Starting rsyncd"
  12.     rsync --daemon ${RSYNC_OPTS}
  13.     eend $?
  14. }
  15.  
  16. stop() {
  17.     ebegin "Stopping rsyncd"
  18.     start-stop-daemon --stop --pidfile /var/run/rsyncd.pid
  19.     eend $?
  20. }
  21.